home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / laptop-mode / conf.d / configuration-file-control.conf < prev    next >
Text File  |  2009-10-06  |  4KB  |  93 lines

  1. #
  2. # Configuration file for Laptop Mode Tools module configuration-file-control.
  3. #
  4. # For more information, consult the laptop-mode.conf(8) manual page.
  5. #
  6.  
  7. ###############################################################################
  8. # Configuration file control
  9. # --------------------------
  10. #
  11. # Laptop mode tools can automatically swap out configuration files depending on
  12. # the power state of your system.
  13. # The primary use for this feature is for controlling the configuration files
  14. # of syslog daemons. Syslog daemons have a tendency to sync their log files when
  15. # entries are written to them. This causes disks to spin up, which is not very
  16. # nice when you're trying to save power. The syslog.conf can be tweaked to *not*
  17. # sync a given file, by prepending the log file name with a dash, like this:
  18. #
  19. #     mail.*        -/var/log/mail/mail.log
  20. #
  21. # Using the following options, you can let laptop mode switch between
  22. # different configurations depending on whether you are working on
  23. # battery or on AC power.
  24. #
  25. #
  26. # IMPORTANT NOTE
  27. # --------------
  28. #
  29. # This feature will NOT work if CONTROL_SYSLOG_CONF is set in laptop-mode.conf.
  30. # To start using this feature, remove the CONTROL_SYSLOG_CONF section in
  31. # laptop-mode.conf, and then restart the laptop-mode-tools service.
  32. #
  33. # Note that the new config files will have different names than the old ones,
  34. # and that settings are NOT migrated. You will have to do this manually.
  35. #
  36. ###############################################################################
  37.  
  38.  
  39. #
  40. # Should laptop mode tools control which configuration files should be used?
  41. #
  42. CONTROL_CONFIG_FILES=0
  43.  
  44.  
  45. #
  46. # Specify the configuration files that you want to control, as a space-separated
  47. # list.
  48. #
  49. # The specific configuration files will be named as follows:
  50. #
  51. #     <config file>-nolm-ac
  52. #     <config file>-lm-ac
  53. #     <config file>-batt
  54. #
  55. # The first file will be used when the system is on AC power and laptop mode
  56. # is not active. The second file will be used when the system is on AC power and
  57. # laptop mode is active. The third file will be used when the system is on
  58. # battery power.
  59. #
  60. # When the laptop mode tools service is enabled, it will replace the
  61. # configuration files with a symlink to one of the three state-based
  62. # configuration files. The original configuration file will be saved as
  63. # <config file>.lmbackup, and it will be restored when the laptop mode tools
  64. # service is disabled.
  65. #
  66. # When you add files to this list, make sure to also add the appropriate
  67. # programs and services to the configuration settings below.
  68. #
  69. # You can create the alternate configuration files yourself. If you don't, they
  70. # will be created by laptop mode tools the next time it is restarted. To force
  71. # the files to be created, run the laptop mode tools init script with the
  72. # "restart" parameter.
  73. #
  74. CONFIG_FILES="/etc/syslog.conf /etc/syslog-ng/syslog-ng.conf /etc/rsyslog.conf"
  75.  
  76.  
  77. #
  78. # Signal these programs and reload these services when configuration files hav
  79. # been replaced.
  80. #
  81. # Programs in CONFIG_FILE_SIGNAL_PROGRAMS receive the SIGHUP signal after
  82. # configuration files have been replaced. All common syslog daemons interpret
  83. # this as an instruction to reload their config files, it may work for other
  84. # daemons as well but your mileage may vary.
  85. #
  86. # For services listed in CONFIG_FILE_RELOAD_SERVICES, laptop mode tools will
  87. # call the init script with the "reload" parameter after configuration files
  88. # have been replaced.
  89. #
  90. CONFIG_FILE_SIGNAL_PROGRAMS="syslogd syslog-ng rsyslogd"
  91. CONFIG_FILE_RELOAD_SERVICES=""
  92.